home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / life.zip / LIFE.DOC < prev    next >
Text File  |  1987-09-01  |  2KB  |  33 lines

  1.                        The game of LIFE GENERATION...
  2.  
  3.    Basically, this is just an introductory program to PASCAL.  IT is
  4. also quite interesting.  The algorythm which the program uses to 
  5. determine whether a specific cell lives or dies is based on three simple
  6. principles of nature.  First, crowded cells, those which have more than
  7. two neighbors will die, as will abandoned cells with less than two
  8. neighbors.  These are the two most important rules.  The third rule is
  9. that a cell form which either does not evolve further, or alternates 
  10. infinitely is also considered dead.  Unfortunately, this program is not
  11. designed to recognize stagnation, so you will have to stop the program
  12. with CTRL-C.
  13.    Finally, since I am not familiar with MS-PASCAL to the extent that I
  14. am with UCSD PASCAL, this program does not have a clear screen function.
  15. It meerly executes a line scroll.  I'm sure with the more modern Turbo
  16. Pascal versions, many things can be added to this game.  Feel free to do
  17. so.  
  18.  
  19. Playing the game::  You must first enter the number of cells to begin 
  20. with.  This should be less than 15.  Anybody can create an organism out
  21. of 50 cells.  It's the challenge of limited means which makes this game
  22. fun.  Then, the coordinates for each cell must be entered separately.
  23. Remember, cell that are alone, or crowded will die.  After you have
  24. completed the coordinate entry, sit back and watch the organism grow,
  25. recede, and sometimes even split in two.  Your chances of creating an
  26. infinitely developing organism are slim, however, some can live over 50
  27. generations before they stagnate or die.  Good luck on your creation!!
  28.  
  29.  
  30. Written and documented by Joseph Velasco.
  31. For Example purposes.
  32. Compiler::> MS-PASCAL
  33.